home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / managers / ILayoutManager.as < prev    next >
Text File  |  2009-02-12  |  729b  |  26 lines

  1. package mx.managers
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface ILayoutManager extends IEventDispatcher
  6.    {
  7.        
  8.       
  9.       function validateNow() : void;
  10.       
  11.       function validateClient(param1:ILayoutManagerClient, param2:Boolean = false) : void;
  12.       
  13.       function isInvalid() : Boolean;
  14.       
  15.       function invalidateDisplayList(param1:ILayoutManagerClient) : void;
  16.       
  17.       function set usePhasedInstantiation(param1:Boolean) : void;
  18.       
  19.       function invalidateSize(param1:ILayoutManagerClient) : void;
  20.       
  21.       function get usePhasedInstantiation() : Boolean;
  22.       
  23.       function invalidateProperties(param1:ILayoutManagerClient) : void;
  24.    }
  25. }
  26.